home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Deutsche Edition 1
/
Deutsche Edition 1.iso
/
amok
/
amok_lha
/
amok24.lha
/
DME
/
rexmacs
/
save.dme
< prev
next >
Wrap
Text File
|
1993-08-15
|
487b
|
16 lines
/* Saves the file with the filename specified by the 1st argument. */
/* If no name is specified, the file is saved with it's original */
/* filename. Arguments following the 1st one are ignored. */
/* */
/* Kim DeVaughn 12/21/87 */
options failat 5
rc = 0
parse arg filename junk
if filename = ""
then saveold
else saveas filename
exit rc